home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / progtool / c / gcc / gempp19.zoo / gem++19 / include / bool.h next >
Encoding:
C/C++ Source or Header  |  1993-11-01  |  97 b   |  10 lines

  1. #ifndef bool_h
  2. #define bool_h
  3.  
  4. typedef int bool;
  5.  
  6. const bool TRUE=1;
  7. const bool FALSE=0;
  8.  
  9. #endif
  10.